home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 501-525 / disk_508 / hcc / unpack < prev    next >
Text File  |  1992-05-06  |  1KB  |  42 lines

  1. .K ""
  2. echo "This script will unpack the following lharc archives:"
  3. echo ""
  4. echo "    HCC.lzh        =>    HCC:"
  5. echo ""
  6. echo "  HCC-Source.lzh    =>    HCC-Source:    (Only if you want)"
  7. echo ""
  8. ask "Do you have a blank disk ready?"
  9. if not WARN
  10.     echo "Try again when you do ..."
  11.     echo "All Done.  Click close gadget to get rid of window."
  12.     endcli
  13. endif
  14.  
  15. ask "Is floppy drive df1: free?"
  16. if not WARN
  17.     echo "You will need to do the unpacking yourself."
  18.     echo "All Done.  Click close gadget to get rid of window."
  19.     endcli
  20. endif
  21.  
  22. echo "Formatting and unpacking disk HCC:"
  23.  
  24. sys:system/format drive df1: name HCC noicons
  25. :c/lharc -x -a -m x HCC.lzh HCC:
  26.  
  27. ask "Do you want the source code AND have another blank disk?"
  28. if not WARN
  29.     echo "Read the file HCC:Docs/Installation how to continue."
  30.     echo "All Done.  Click close gadget to get rid of window."
  31.     endcli
  32. endif
  33.  
  34. echo "Formatting and unpacking disk HCC-Source:"
  35.  
  36. sys:system/format drive df1: name HCC-Source noicons
  37. :c/lharc -x -a -m x HCC-Source.lzh HCC-Source:
  38.  
  39. echo "Read the file HCC:Docs/Installation how to continue."
  40. echo "All Done.  Click close gadget to get rid of window."
  41. endcli
  42.